home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus Special 23 / AMIGAplus Sonderheft 23 (2000)(Falke)(DE)[!].iso / Tools / Text-Viewer / Notes / english / Violinkey.rexx < prev   
OS/2 REXX Batch file  |  1999-11-06  |  43KB  |  1,425 lines

  1. /* subprogram for "Notes.pprx" */
  2.  
  3. signal on halt
  4. signal on break_c
  5. signal on break_e
  6. signal on break_d
  7. call ppm_SetStyle(N)
  8.  
  9. noteneingabe:
  10.     /* smallest notedistance */
  11.     sysart = "notesystem:2"
  12.     systemart = ppm_Getform("Please repeat your choice of the notesystems... (2, 1v oder 1b)", 3, sysart)
  13.     select
  14.     when systemart == '2' then zdist = 4
  15.     when systemart == '1v' then zdist = 2
  16.     when systemart == '1b' then zdist = 2
  17.     otherwise noteneingabe()
  18.     end
  19.     zdist2 = zdist-2
  20.     xgrdform = "(1,2,4,8 oder 16)"
  21.     xgrd = ppm_GetForm("Pleace give in the smallest note distance ...(nothing=Break!)", 3, xgrdform)
  22.     if xgrd == '' then  exit_msg("Break")
  23.     select
  24.      when xgrd == '1' then xg =0.7
  25.      when xgrd == '2' then xg =1.4
  26.      when xgrd == '4' then xg =2.8
  27.      when xgrd == '8' then xg =5.6
  28.      when xgrd == '16' then xg =11.2
  29.      otherwise notenwert()
  30.     end
  31.  
  32.    /* pointmessure of the notes */
  33.    notepkt = 26
  34.    call ppm_SetJustification(0)
  35.    
  36.    zz = 0   /* linecounter (german:Zeilenzähler) */
  37.    notex = 0
  38.    notey = 0
  39.    page = ppm_CurrentPage()
  40.  
  41. clickpos:
  42.    res = ppm_GetUserText(2, "Manual or align to a box ? m/b")
  43.  
  44.    if res == 'M' then res = 'm'
  45.    if res == 'B' then res = 'b'
  46. click:
  47.  select
  48.    when res == 'm' then
  49.      do
  50.        clickpos = ppm_GetClickPosition("Pleace click on the place, where I shall begin...")
  51.        if clickpos == 0 then
  52.            do
  53.            click()
  54.            end
  55.        else
  56.          do
  57.            notey = word(clickpos, 2)
  58.            notex = word(clickpos, 1)
  59.            if notex < 2.5 then notex = 2.5
  60.            xw = notex
  61.            yw = notey
  62.            if systemart ~= '2' then
  63.             do
  64.              if notey <= 3.3  then zz= 0   /* zz is linecounter */
  65.              if ((notey > 3.5)&(notey < 5.3)) then zz = 2
  66.              if ((notey > 5.5)&(notey < 7.3)) then zz = 4
  67.              if ((notey > 7.5)&(notey < 9.3)) then zz = 6
  68.              if ((notey > 9.5)&(notey < 11.3)) then zz = 8
  69.              if ((notey > 11.5)&(notey < 13.3)) then zz = 10
  70.              if ((notey > 13.5)&(notey < 15.3)) then zz = 12
  71.              if ((notey > 15.5)&(notey < 17.3)) then zz = 14
  72.              if ((notey > 17.5)&(notey < 19.3)) then zz = 16
  73.              if ((notey > 19.5)&(notey < 21.3)) then zz = 18
  74.              if ((notey > 21.5)&(notey < 23.3)) then zz = 20
  75.              if ((notey > 23.5)&(notey < 25.3)) then zz = 22
  76.              if notey > 25.3 then noteneingabe()
  77.             end
  78.            else
  79.             do
  80.              if notey <= 3.3  then zz= 0
  81.              if ((notey > 5.5)&(notey < 7.3)) then zz = 4
  82.              if ((notey > 9.5)&(notey < 11.3)) then zz = 8
  83.              if ((notey > 13.5)&(notey < 15.3)) then zz = 12
  84.              if ((notey > 17.5)&(notey < 19.3)) then zz = 16
  85.              if ((notey > 21.5)&(notey < 23.3)) then zz = 20
  86.             end
  87.          end
  88.  
  89.      end
  90.    when res == 'b' then
  91. clickb:
  92.      do
  93.         clickbox = ppm_ClickOnBox("Pleace click on a box, where I shall work away ...")
  94.         if clickbox == '' then clickb()
  95.         pos = ppm_GetBoxPosition(clickbox)
  96.         notex = word(pos, 1)
  97.         notey = word(pos, 2)
  98.         xw = notex
  99.         yw = notey
  100.         call ppm_BoxAtPosn(notex, notey, page)
  101.         if notey <= 3.3  then zz= 0
  102.         if ((notey > 5.5)&(notey < 9.3)) then zz = 4
  103.         if ((notey > 9.5)&(notey < 13.3)) then zz = 8
  104.         if ((notey > 13.5)&(notey < 17.3)) then zz = 12
  105.         if ((notey > 17.5)&(notey < 21.3)) then zz = 16
  106.         if ((notey > 21.5)&(notey < 25.3)) then zz = 20
  107.  
  108.         if notex <= 1 then
  109.         do
  110.           noteneingabe()
  111.         end
  112.      end
  113.    otherwise clickpos()
  114.  end
  115.  
  116.  
  117.    /* pointerbox */
  118.  
  119.    zbid = ppm_CreateBox(notex, zz+0.5, 0.3, 1, 0)
  120.    call ppm_SetSize(26)
  121.    zbn = ppm_GetBoxName(zbid)
  122.    call ppm_TextIntoBox(zbn, '5')
  123.  
  124.  
  125. notenwert:
  126.  
  127.    do forever
  128.            cr = '0a'x
  129.            form = "wort name ['n'at.]"
  130.            call ppm_SetBoxPosition(zbid, notex, zz+0.5)
  131.            call ppm_UpdateScreen()
  132.            eingabe = ppm_GetForm("Please give in for the notes ...(nothing=BREAK )", 7, form)
  133.            if eingabe = '' then
  134.            do
  135.             call ppm_DeleteBox(zbid)
  136.             exit_msg("Break")
  137.            end
  138.            nw = word(eingabe, 1)
  139.            nn = word(eingabe, 2)
  140.            if nw == 'P' then nw = 'p'
  141.            al = word(eingabe, 3)
  142.            if al == 'N' then al = 'n'
  143.            IF nw == 'D' then nw = 'd'
  144.            if nw == 'C' then nw = 'c'
  145.            if nw == 'L' then nw = 'l'
  146.            if nn == 'L' then nn = 'l'
  147.            if nw == "NEW" then nw = "new"
  148.            if nw == "END" then nw = "end"
  149.  
  150.       select
  151.         when nn=='GB2' then nn = 'Gb2'
  152.         when nn=='BB2' then nn = 'Bb2'
  153.         when nn=='AB2' then nn = 'Ab2'
  154.         when nn=='DB3' then nn = 'Db3'
  155.         when nn=='EB3' then nn = 'Eb3'
  156.         when nn=='GB3' then nn = 'Gb3'
  157.         when nn=='AB3' then nn = 'Ab3'
  158.         when nn=='BB3' then nn = 'Bb3'
  159.         when nn=='DB4' then nn = 'Db4'
  160.         when nn=='EB4' then nn = 'Eb4'
  161.         when nn=='GB4' then nn = 'Gb4'
  162.         when nn=='AB4' then nn = 'Ab4'
  163.         when nn=='BB4' then nn = 'Bb4'
  164.         when nn=='DB5' then nn = 'Db5'
  165.         when nn=='EB5' then nn = 'Eb5'
  166.         otherwise NOP
  167.       end
  168.  
  169.         /* x-distance of the notes */
  170.     select
  171.       when nw=='s' then
  172.           do
  173.           xw = xg/16
  174.           nw='x'
  175.           yv = 0
  176.           end
  177.       when nw=='S' then
  178.           do
  179.           xw = xg/16
  180.           nw='X'
  181.           yv = 0.47
  182.           end
  183.       when nw=='e' then
  184.           do
  185.           xw = xg/8
  186.           nw='e'
  187.           yv = 0
  188.           end
  189.       when nw=='E' then
  190.           do
  191.           xw = xg/8
  192.           nw='E'
  193.           yv = 0.47
  194.           end
  195.       when nw=='q' then
  196.           do
  197.           xw = xg/4
  198.           nw='q'
  199.           yv = 0
  200.           end
  201.       when nw=='Q' then
  202.           do
  203.           xw = xg/4
  204.           nw='Q'
  205.           yv = 0.47
  206.           end
  207.       when nw=='h' then
  208.           do
  209.           xw = xg/2
  210.           yv = 0
  211.           end
  212.       when nw=='H' then
  213.           do
  214.           xw = xg/2
  215.           yv = 0.47
  216.           end
  217.       when nw=='w' then
  218.           do
  219.           xw = xg
  220.           nw='w'
  221.           yv = 0
  222.           end
  223.       when nw=='W' then
  224.           do
  225.           xw = xg
  226.           nw='W'
  227.           yv = 0.47
  228.           end
  229.  
  230.      /*point after the note */
  231.  
  232.       when nw == 'pt' then
  233.           do
  234.             if notex < 3 then
  235.             do
  236.               notex = bakx
  237.               zz = zz - zdist
  238.               call ppm_SetSize(25)
  239.               box#id = ppm_CreateBox(notex+0.4, yw+zz+0.26-yv, 0.3, 0.9, 0)
  240.               call ppm_SetSize(20)
  241.               call ppm_TextIntoBox(box#id, 'd')
  242.             end
  243.             else
  244.             do
  245.               call ppm_SetSize(25)
  246.               box#id = ppm_CreateBox(notex-xw+0.4, yw+zz+0.26-yv, 0.3, 0.9, 0)
  247.               call ppm_SetSize(20)
  248.               call ppm_TextIntoBox(box#id, 'd')
  249.             end
  250.            select
  251.                when nn == '1' then
  252.                do
  253.                xw = xg
  254.                notex = notex+xw
  255.                end
  256.                when nn == '2' then
  257.                do
  258.                xw = xg/2
  259.                notex = notex+xw
  260.                end
  261.                when nn == '4' then
  262.                do
  263.                xw = xg/4
  264.                notex = notex+xw
  265.                end
  266.                when nn == '8' then
  267.                do
  268.                xw = xg/8
  269.                notex = notex+xw
  270.                end
  271.                when nn == '16' then
  272.                do
  273.                xw  = xg/16
  274.                notex = notex+xw
  275.                end
  276.                when nn == 'l' then
  277.                do
  278.                xw  = 0.2
  279.                notex = notex+xw
  280.                end
  281.                otherwise notenwert()
  282.            end
  283.            if notex >=18.7 then
  284.                do
  285.                  notex = 2.5
  286.                  zz = zz + zdist
  287.                end
  288.            px = notex - 4
  289.            py = zz-1
  290.            if px < 0 then px = 0
  291.            call ppm_SetPagePosition(px, py+2)
  292.            notenwert()
  293.           end
  294.  
  295.       when nw == 'PT' then
  296.           do
  297.             if notex < 3 then
  298.